Global.CreateList


Create a list global and initialise.

prototype Global.CreateList( string name,
                             int access,
                             list initial_value );

Parameters:
name : The name of the global to create.
access : The access type of the global.
initial_value : The initial list object to be held in the global.

Return value:
None.

Notes:
If a global already exists with this name it is overwritten, unless the original is read only.

See also:
Global.CreateInt, Global.CreateFloat, Global.CreateBool, Global.CreateHandle, Global.CreateString, Global.CreateSet.